home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000099_news@columbia.edu _Sun Apr 20 20:21:20 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id UAA03958
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sun, 20 Apr 1997 20:21:19 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id UAA22747
  7.     for kermit.misc@watsun; Sun, 20 Apr 1997 20:21:19 -0400 (EDT)
  8. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsxfer3.itd.umich.edu!agate!news.Stanford.EDU!nntp.Stanford.EDU!oas.Stanford.EDU!stew
  9. From: stew@oas.Stanford.EDU (Stewart Levin)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Two bugs in C-Kermit 6.0?
  12. Date: 21 Apr 1997 00:15:31 GMT
  13. Organization: Stanford Exploration Project
  14. Lines: 63
  15. Sender: Stewart.A.Levin@columbia.edu
  16. Message-ID: <5jebj3$leu$1@nntp.Stanford.EDU>
  17. NNTP-Posting-Host: oas.stanford.edu
  18. Summary: Modem variables ignored/changed
  19. Keywords: kermit modem C-kermit
  20. Xref: news.columbia.edu comp.protocols.kermit.misc:6917
  21.  
  22.  
  23. Problem 1:
  24.  
  25. As per the Using C-Kermit 2nd edition, I changed my modem initialization
  26. string so that the modem speaker would be turned off.  The initialization
  27. file excerpt is:
  28.  
  29. :CUSTOM ; Customization file
  30.  
  31. ; Local Linux PC initialization - SAL 1/26/96
  32. SET LINE /dev/modem
  33. SET SPEED 57600
  34. SET MODEM TYPE TELEPATH
  35. SET MODEM COMMAND INIT-STRING \Freplace(\v(m_init),\{13},L1M0\{13})
  36. SET MODEM SPEED-MATCHING OFF  ; Use speed buffering.
  37. SET MODEM ERROR-CORRECTION ON ; Enable error-correction and compression.
  38. SET MODEM COMPRESSION ON
  39. SET RECEIVE PACKET-LENGTH 2048
  40. SET DIAL DIRECTORY /usr/local/share/lib/kermit/ckermit.kdd
  41. SET DIAL AREA-CODE 972
  42. SET DIAL CONNECT AUTO
  43. SET DIAL COUNTRY-CODE 1
  44. SET DIAL METHOD PULSE
  45. SET TERMINAL AUTODOWNLOAD ON
  46.  
  47. However, when I then "access" iany one of my dial-up services, them
  48. modem speaker remains on during dialing.  Manually using the command
  49.  
  50. OUTPUT \v(m_init)
  51.  
  52. before I "access", turns it off.
  53.  
  54. Problem 2:
  55.  
  56. After "access"ing a dial-up service, the next "access" fails complaining
  57. that I have asked for an "unsupported speed: unknown".  Repeating the
  58. "access" again works fine.  Other info of possible relevance: I use
  59. the SCRIPT command to negotiate the service login sequence.  Excerpted
  60. transcript:
  61.  
  62. [/etc/X11/fvwm] C-Kermit>access work
  63.  
  64. ... Connect successful, check mail, etc. then logout ...
  65.  
  66.  
  67. dalts001>exit
  68.  
  69. [/etc/X11/fvwm] C-Kermit>access work
  70.  A serial connection might still be active on /dev/modem.
  71. OK to close? y
  72. ?No keywords match - unknown
  73. unsupported speed: unknown
  74. [/etc/X11/fvwm] C-Kermit>access meptec
  75.  Trying: xxxxxxxxxx...  (Phone number omitted for security)
  76.  Device: /dev/modem, modem: gateway-telepath, speed: 57600
  77.  Dial timeout: 45 seconds
  78.  To cancel: type your interrupt character (normally Ctrl-C).
  79.  
  80. ---------------------------------------------------------------
  81. Any patches or workarounds you can suggest?
  82.  
  83. - Stew Levin
  84.   stew @ sep.stanford.edu